home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000360_news@columbia.edu_Thu Sep 14 15:26:53 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA04238
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Fri, 15 Sep 1995 01:05:15 -0400
  3. Received: by apakabar.cc.columbia.edu id AA21821
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Fri, 15 Sep 1995 01:05:14 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: MS-Kermit 3.14 - Problem with Wyse-50 Emulation
  9. Message-Id: <1995Sep14.212654.61352@cc.usu.edu>
  10. Date: 14 Sep 95 21:26:53 MDT
  11. References: <811093642@gkja>
  12. Organization: Utah State University
  13. Lines: 36
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <811093642@gkja>, Graham Jenkins <grahamj@gkja.melbpc.org.au> writes:
  17. > One of our Applications suppliers is using sequences as shown in
  18. > the example below for marking screen-areas to stand out.
  19. > Unfortunately, the "revert-to-normal" bit doesn't work quite the
  20. > same under KERMITE (mid-95 3.14 release) with a Wyse50 emulation
  21. > as it does on a real Wyse50.  Is there perhaps a patch for this?
  22. > ---
  23. > #!/bin/sh
  24. > # wy50test.sh    Tests screen feature escape codes for Wyse-50 with
  25. > #        MSKermit-3.14 (mid-'95 release, kermite).
  26. > # Sledgehammer reset
  27. > echo "\0033(\0033\`A\0033A00-NORMAL\c"
  28. > sleep 3
  29. > # Standout (Reverse character protect, write protect)
  30. > echo "\0033\`6\0033)-STANDOUT\c"
  31. > sleep 3
  32. > # Normal
  33. > echo "\0033(-NORMAL\c"
  34. > sleep 3
  35. > # Sledgehammer reset
  36. > echo "\0033(\0033\`A\0033A00-END"
  37. > exit 0
  38. -----------
  39.     Yes, this is a genuine bug, sigh. It turns out that fixing it is
  40. something of a chore deep in the code because of the way sundry video
  41. attributes are munged (changed) by the ESC ` <write protected display
  42. attribute code> sequence. I'll have this fixed in the next release, as
  43. they say, because it is turning out to be too complicated to generate
  44. as a Patch file item. I have a real Wyse-50 to help decode the affair.
  45.     Thanks,
  46.     Joe D.